/* .dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  border-bottom: 1px solid;
  padding: 5px;
}
table {
  z-index: -1;
} */
#hr {
  border-top: 2px solid rgb(154, 154, 156);
  margin: 7px;
  color: blue;
  width: 100%;
}
a {
  text-decoration: none !important;
}
/*? <!----------------------------------------------- < Dropdown > -----------------------------------------------> */

#dropmeow {
  display: none; 
  position: absolute;
  transition: all 300ms ease;
  z-index: 9;
}
#dropmeow > ul {
  width: 280px;
  position: absolute;
  top: 20px;
  left: -620px;
  background-color: white;
  text-align: left;
  list-style: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#droppers {
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 10px 10px;
  border-bottom: 1px solid grey;
}
#arrow {
  filter: invert();
  width: 20px;
  transform: rotateZ(180deg);
}
#droppers:hover {
  transform: scale(1.02);
  background-color: rgb(235, 253, 255);
}

@media (max-width:700px){
  html{
    width: min-content;
  }
  #dropmeow > ul{
    top: 45px;
    left: -328px;
  }
}
